home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Syslog Component / ShowInitIcon.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-02  |  673 b   |  28 lines  |  [TEXT/SPM ]

  1. /*
  2.     ShowInitIcon.h
  3.     
  4.     Header file defining API Access to the ShowInitIcon routine.
  5. */
  6.  
  7. #pragma once
  8.  
  9. #ifndef __H_ShowInitIcon__
  10. #define __H_ShowInitIcon__
  11.  
  12. // Usage: pass the ID of your icon family (ICN#/icl4/icl8) to have it drawn in the right spot.
  13. // If 'advance' is true, the next INIT icon will be drawn to the right of your icon. If it is false, the next INIT icon will overwrite
  14. // yours. You can use it to create animation effects by calling ShowInitIcon several times with 'advance' set to false.
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. pascal void ShowInitIcon(short iconFamilyID, Boolean advance);
  21.  
  22. #ifdef __cplusplus
  23. }
  24. #endif
  25.  
  26. #endif /* __H_ShowInitIcon__ */
  27.  
  28.